home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / examples / fun_plot.r < prev    next >
Text File  |  1994-04-26  |  346b  |  17 lines

  1. // Example plot
  2.  
  3. x = (0:10:.05)';
  4. y = x.^2;
  5.  
  6. pstart (1,1,"Mac");
  7. plfont(2);  // Roman font
  8. plwid(2);   // line width
  9.  
  10. ptitle ("#frJust For Fun, #fiJust For Fun, #fsJust For Fun");
  11. xlabel ("#ga");            // this is alpha
  12. ylabel ("#gb=#ga#u2#d");   // alpha = beta^2
  13. plot ([x,y]);
  14.  
  15. //send Postscript output to file fun.ps
  16. //plprint ("fun.ps");
  17.